home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Allow null lines
- ;
- MINLEN "0"
- ;
- ; Properize, using the Properization Exceptions File GENERIC.PEF
- ; We properize using the Intelligent and Sentence methods
- ;
- PROPER $FLINE "IS" "GENERIC.PEF"
- ;
- ; Because the list of items is not formatted as recognizable sentences,
- ; we must manually uppercase the first alphanumeric character.
- ;
- BEGIN $FLINE[1] = "-"
- PROPER $FLINE "ISU" "GENERIC.PEF"
- END
- ;
- ; We will properize the indented items in the simplest way
- ;
- BEGIN $FLINE[1] = " "
- PROPER $FLINE
- END
- ;
- ; The salutation line contains a name, so we must properize it
- ;
- BEGIN $FLINE[1 4] = "Dear"
- PROPER $FLINE
- END
- ;
- ; Output
- ;
- OUTEND |{$FLINE}
-